home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 May
/
EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso
/
recent2
/
amicomsys.lha
/
AmiComSys
/
rexx
/
SendWEB.amicomsys
Wrap
Text File
|
1997-04-18
|
565b
|
38 lines
/* Send WEB-address to your browser
Currently supported is Aweb, Amosaic, Ibrowse and Voyager.
$VER: SendWEB.amicomsys (18.04.1997) Håkan Parting
*/
parse arg args
options results
if show('P','AWEB.1') then
do
address 'AWEB.1'
OPEN args
Exit
end
if show('P','AMOSAIC.1') then
do
address 'AMOSAIC.1'
JUMP URL args
Exit
end
if show('P','IBROWSE.1') then
do
address 'IBROWSE.1'
NewWindow "hej"
Exit
end
if show('P','IBROWSE') then
do
address 'IBROWSE'
GOTOURL args
Exit
end
if show('P','VOYAGER') then
do
address 'VOYAGER'
OPENURL args NEW
Exit
end